home *** CD-ROM | disk | FTP | other *** search
- on checkDisc
- global discsLoaded, IconCount
- set i to the clickOn
- if the castNum of sprite i = 511 then
- if sprite i intersects 22 then
- set the castNum of sprite i to 600
- set IconCount to IconCount - 1
- updateSpritelist()
- set discsLoaded to discsLoaded + 1
- go("DISC IN")
- exit
- end if
- end if
- end
-
- on checkDiscIcon
- global IconCount, discs, discsLoaded
- repeat with i = 48 down to 33
- if the castNum of sprite i = 511 then
- set the castNum of sprite i to 600
- set IconCount to IconCount - 1
- updateSpritelist()
- set discsLoaded to discsLoaded + 1
- set Found to 1
- go("DISC IN")
- exit repeat
- end if
- end repeat
- if Found = 1 then
- exit
- else
- go("START HELP")
- end if
- end
-